home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Tech Arsenal 1
/
Tech Arsenal (Arsenal Computer).ISO
/
tek-04
/
bipl.zip
/
PROCS.ZIP
/
LASTNAME.ICN
< prev
next >
Wrap
Text File
|
1992-09-28
|
749b
|
28 lines
############################################################################
#
# File: lastname.icn
#
# Subject: Procedure to produce last name
#
# Author: Ralph E. Griswold
#
# Date: September 2, 1991
#
###########################################################################
#
# Produces the last name of a name in conventional form. Obviously, it
# doesn't work for every possibility.
#
############################################################################
procedure lastname(s)
while line := trim(s) do {
line ?:= tab(upto(',')) # Get rid of things like " ... , Jr."
line ? {
every i := upto(' ')
tab(\i + 1)
return tab(0)
}
}
end